Documentation fixes
authorMatthias Clasen <mclasen@redhat.com>
Sun, 28 Dec 2008 06:58:09 +0000 (06:58 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 28 Dec 2008 06:58:09 +0000 (06:58 +0000)
2008-12-28  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkhsv.c:
        * gtk/gtkwidget.c:
        * gtk/gtkaccelgroup.c: Documentation fixes

        * gtk/gtkstatusicon.c:
        * gtk/gtkentry.c:
        * gtk/gtkeditable.[hc]: Make parameter names match to make gtk-doc
        happy.

svn path=/trunk/; revision=21953

ChangeLog
gtk/gtkaccelgroup.c
gtk/gtkeditable.c
gtk/gtkentry.c
gtk/gtkhsv.c
gtk/gtkstatusicon.c
gtk/gtkwidget.c

index b3652c0ed09c172e2918ded039a633ac35424c3c..6a50a2462749e265354771b7999c93b7334994b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2008-12-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkhsv.c:
+       * gtk/gtkwidget.c: 
+       * gtk/gtkaccelgroup.c: Documentation fixes
+
+       * gtk/gtkstatusicon.c:
+       * gtk/gtkentry.c:
+       * gtk/gtkeditable.[hc]: Make parameter names match to make gtk-doc
+       happy.
+
 2008-12-27  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkentry.c: Expand the docs some more.
index 3bf9415bbbc99bbbb3260209dae56fe943d75b58..32c76db8e37b3cce2e48f9acf901bee6109ae0e8 100644 (file)
@@ -834,7 +834,6 @@ gtk_accel_group_from_accel_closure (GClosure *closure)
  *                 to activate the accelerator.
  * @accel_key:     accelerator keyval from a key event
  * @accel_mods:    keyboard state mask from a key event
- * @returns:       %TRUE if the accelerator was handled, %FALSE otherwise
  * 
  * Finds the first accelerator in @accel_group 
  * that matches @accel_key and @accel_mods, and
@@ -867,7 +866,6 @@ gtk_accel_group_activate (GtkAccelGroup   *accel_group,
  *                 to activate the accelerator.
  * @accel_key:     accelerator keyval from a key event
  * @accel_mods:    keyboard state mask from a key event
- * @returns:       %TRUE if the accelerator was handled, %FALSE otherwise
  * 
  * Finds the first accelerator in any #GtkAccelGroup attached
  * to @object that matches @accel_key and @accel_mods, and
index 40f4986f11256e44fc2060b323f55c26b0723a74..466516f8350b0fd4e94bd23b9d6edb4b5f701d63 100644 (file)
@@ -142,10 +142,10 @@ gtk_editable_delete_text (GtkEditable *editable,
 /**
  * gtk_editable_get_chars:
  * @editable: a #GtkEditable
- * @start: start of text
- * @end: end of text
+ * @start_pos: start of text
+ * @end_pos: end of text
  *
- * Retreives the content of the editable between @start and @end.
+ * Retreives the content of the editable between @start_pos and @end_pos.
  * Note that positions are specified in characters, not bytes.
  *
  * Return value: a pointer to the contents of the widget as a
@@ -154,12 +154,12 @@ gtk_editable_delete_text (GtkEditable *editable,
  **/
 gchar *    
 gtk_editable_get_chars (GtkEditable *editable,
-                       gint         start,
-                       gint         end)
+                       gint         start_pos,
+                       gint         end_pos)
 {
   g_return_val_if_fail (GTK_IS_EDITABLE (editable), NULL);
 
-  return GTK_EDITABLE_GET_CLASS (editable)->get_chars (editable, start, end);
+  return GTK_EDITABLE_GET_CLASS (editable)->get_chars (editable, start_pos, end_pos);
 }
 
 /**
@@ -256,21 +256,21 @@ gtk_editable_delete_selection (GtkEditable *editable)
 /**
  * gtk_editable_select_region:
  * @editable: a #GtkEditable
- * @start: start of region
- * @end: end of region
+ * @start_pos: start of region
+ * @end_pos: end of region
  *
- * Selects the text between @start and @end. Both @start and @end are
- * relative to the start of the content. Note that positions are specified
- * in characters, not bytes.
+ * Selects the text between @start_pos and @end_pos. Both @start_pos and 
+ * @end_pos are relative to the start of the content. Note that positions 
+ * are specified in characters, not bytes.
  **/
 void
 gtk_editable_select_region (GtkEditable *editable,
-                           gint         start,
-                           gint         end)
+                           gint         start_pos,
+                           gint         end_pos)
 {
   g_return_if_fail (GTK_IS_EDITABLE (editable));
   
-  GTK_EDITABLE_GET_CLASS (editable)->set_selection_bounds (editable,  start, end);
+  GTK_EDITABLE_GET_CLASS (editable)->set_selection_bounds (editable, start_pos, end_pos);
 }
 
 /**
index 0c2824a7dba32a1143b9165ef968b747b077fd73..021bbe019b78e8d767d0d7886f30cb9fd1aa519b 100644 (file)
@@ -6180,7 +6180,7 @@ gtk_entry_prepend_text (GtkEntry *entry,
 /**
  * gtk_entry_set_position:
  * @entry: a #GtkEntry
- * @position:  the position of the cursor. The cursor is displayed
+ * @position: the position of the cursor. The cursor is displayed
  *    before the character with the given (base 0) index in the widget. 
  *    The value must be less than or equal to the number of characters 
  *    in the widget. A value of -1 indicates that the position should
@@ -6193,7 +6193,7 @@ gtk_entry_prepend_text (GtkEntry *entry,
  */
 void
 gtk_entry_set_position (GtkEntry *entry,
-                       gint       position)
+                       gint      position)
 {
   g_return_if_fail (GTK_IS_ENTRY (entry));
 
@@ -6892,7 +6892,7 @@ gtk_entry_get_alignment (GtkEntry *entry)
 /**
  * gtk_entry_set_icon_from_pixbuf:
  * @entry: a #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  * @pixbuf: A #GdkPixbuf, or %NULL
  *
  * Sets the icon shown in the specified position using a pixbuf.
@@ -6949,7 +6949,7 @@ gtk_entry_set_icon_from_pixbuf (GtkEntry             *entry,
 /**
  * gtk_entry_set_icon_from_stock:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  * @stock_id: The name of the stock item, or %NULL
  *
  * Sets the icon shown in the entry at the specified position from
@@ -7135,7 +7135,7 @@ gtk_entry_set_icon_from_gicon (GtkEntry             *entry,
 /**
  * gtk_entry_set_icon_activatable:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  * @activatable: %TRUE if the icon should be activatable
  *
  * Sets whether the icon is activatable.
@@ -7202,7 +7202,7 @@ gtk_entry_get_icon_activatable (GtkEntry             *entry,
 /**
  * gtk_entry_get_pixbuf:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  *
  * Retrieves the image used for the icon.
  *
@@ -7238,7 +7238,7 @@ gtk_entry_get_pixbuf (GtkEntry             *entry,
 /**
  * gtk_entry_get_gicon:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  *
  * Retrieves the #GIcon used for the icon, or %NULL if there is
  * no icon or if the icon was set by some other method (e.g., by
@@ -7271,7 +7271,7 @@ gtk_entry_get_gicon (GtkEntry             *entry,
 /**
  * gtk_entry_get_stock:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  *
  * Retrieves the stock id used for the icon, or %NULL if there is
  * no icon or if the icon was set by some other method (e.g., by
@@ -7304,7 +7304,7 @@ gtk_entry_get_stock (GtkEntry             *entry,
 /**
  * gtk_entry_get_icon_name:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  *
  * Retrieves the icon name used for the icon, or %NULL if there is
  * no icon or if the icon was set by some other method (e.g., by
@@ -7337,7 +7337,7 @@ gtk_entry_get_icon_name (GtkEntry             *entry,
 /**
  * gtk_entry_set_icon_sensitive:
  * @entry: A #GtkEntry
- * @position: Icon position
+ * @icon_pos: Icon position
  * @sensitive: Specifies whether the icon should appear
  *             sensitive or insensitive
  *
index 1c05bd5f73e1181ea6340fc29e169f64fb5d24f6..9862001cc41d6b8362bb9100f56d8b80ed800e96 100644 (file)
@@ -1364,14 +1364,13 @@ gtk_hsv_focus (GtkWidget       *widget,
 
 /**
  * gtk_hsv_new:
- * @void:
  *
  * Creates a new HSV color selector.
  *
  * Return value: A newly-created HSV color selector.
  *
  * Since: 2.14
- **/
+ */
 GtkWidget*
 gtk_hsv_new (void)
 {
@@ -1380,16 +1379,16 @@ gtk_hsv_new (void)
 
 /**
  * gtk_hsv_set_color:
- * @hsv: An HSV color selector.
- * @h: Hue.
- * @s: Saturation.
- * @v: Value.
+ * @hsv: An HSV color selector
+ * @h: Hue
+ * @s: Saturation
+ * @v: Value
  *
- * Sets the current color in an HSV color selector.  Color component values must
- * be in the [0.0, 1.0] range.
+ * Sets the current color in an HSV color selector.
+ * Color component values must be in the [0.0, 1.0] range.
  *
  * Since: 2.14
- **/
+ */
 void
 gtk_hsv_set_color (GtkHSV *hsv,
                   gdouble h,
@@ -1416,16 +1415,16 @@ gtk_hsv_set_color (GtkHSV *hsv,
 
 /**
  * gtk_hsv_get_color:
- * @hsv: An HSV color selector.
- * @h: Return value for the hue.
- * @s: Return value for the saturation.
- * @v: Return value for the value.
+ * @hsv: An HSV color selector
+ * @h: Return value for the hue
+ * @s: Return value for the saturation
+ * @v: Return value for the value
  *
- * Queries the current color in an HSV color selector.  Returned values will be
- * in the [0.0, 1.0] range.
+ * Queries the current color in an HSV color selector.
+ * Returned values will be in the [0.0, 1.0] range.
  *
  * Since: 2.14
- **/
+ */
 void
 gtk_hsv_get_color (GtkHSV *hsv,
                    double *h,
@@ -1450,14 +1449,14 @@ gtk_hsv_get_color (GtkHSV *hsv,
 
 /**
  * gtk_hsv_set_metrics:
- * @hsv: An HSV color selector.
- * @size: Diameter for the hue ring.
- * @ring_width: Width of the hue ring.
+ * @hsv: An HSV color selector
+ * @size: Diameter for the hue ring
+ * @ring_width: Width of the hue ring
  *
  * Sets the size and ring width of an HSV color selector.
  *
  * Since: 2.14
- **/
+ */
 void
 gtk_hsv_set_metrics (GtkHSV *hsv,
                     gint    size,
@@ -1486,14 +1485,14 @@ gtk_hsv_set_metrics (GtkHSV *hsv,
 
 /**
  * gtk_hsv_get_metrics:
- * @hsv: An HSV color selector.
- * @size: Return value for the diameter of the hue ring.
- * @ring_width: Return value for the width of the hue ring.
+ * @hsv: An HSV color selector
+ * @size: Return value for the diameter of the hue ring
+ * @ring_width: Return value for the width of the hue ring
  *
  * Queries the size and ring width of an HSV color selector.
  *
  * Since: 2.14
- **/
+ */
 void
 gtk_hsv_get_metrics (GtkHSV *hsv,
                     gint   *size,
@@ -1514,19 +1513,19 @@ gtk_hsv_get_metrics (GtkHSV *hsv,
 
 /**
  * gtk_hsv_is_adjusting:
- * @hsv:
+ * @hsv: A #GtkHSV 
  *
- * An HSV color selector can be said to be adjusting if multiple rapid changes
- * are being made to its value, for example, when the user is adjusting the
- * value with the mouse.  This function queries whether the HSV color selector
- * is being adjusted or not.
+ * An HSV color selector can be said to be adjusting if multiple rapid
+ * changes are being made to its value, for example, when the user is 
+ * adjusting the value with the mouse. This function queries whether 
+ * the HSV color selector is being adjusted or not.
  *
- * Return value: TRUE if clients can ignore changes to the color value, since
- * they may be transitory, or FALSE if they should consider the color value
- * status to be final.
+ * Return value: %TRUE if clients can ignore changes to the color value,
+ *     since they may be transitory, or %FALSE if they should consider
+ *     the color value status to be final.
  *
  * Since: 2.14
- **/
+ */
 gboolean
 gtk_hsv_is_adjusting (GtkHSV *hsv)
 {
@@ -1541,18 +1540,19 @@ gtk_hsv_is_adjusting (GtkHSV *hsv)
 
 /**
  * gtk_hsv_to_rgb:
- * @h: Hue.
- * @s: Saturation.
- * @v: Value.
- * @r: Return value for the red component.
- * @g: Return value for the green component.
- * @b: Return value for the blue component.
+ * @h: Hue
+ * @s: Saturation
+ * @v: Value
+ * @r: Return value for the red component
+ * @g: Return value for the green component
+ * @b: Return value for the blue component
  *
- * Converts a color from HSV space to RGB.  Input values must be in the
- * [0.0, 1.0] range; output values will be in the same range.
+ * Converts a color from HSV space to RGB.
+ * Input values must be in the [0.0, 1.0] range; 
+ * output values will be in the same range.
  *
  * Since: 2.14
- **/
+ */
 void
 gtk_hsv_to_rgb (gdouble  h,
                gdouble  s,
@@ -1579,18 +1579,19 @@ gtk_hsv_to_rgb (gdouble  h,
 
 /**
  * gtk_hsv_to_rgb:
- * @r: Red.
- * @g: Green.
- * @b: Blue.
- * @h: Return value for the hue component.
- * @s: Return value for the saturation component.
- * @v: Return value for the value component.
+ * @r: Red
+ * @g: Green
+ * @b: Blue
+ * @h: Return value for the hue component
+ * @s: Return value for the saturation component
+ * @v: Return value for the value component
  *
- * Converts a color from RGB space to HSV.  Input values must be in the
- * [0.0, 1.0] range; output values will be in the same range.
+ * Converts a color from RGB space to HSV.
+ * Input values must be in the [0.0, 1.0] range;
+ * output values will be in the same range.
  *
  * Since: 2.14
- **/
+ */
 void
 gtk_rgb_to_hsv (gdouble  r,
                gdouble  g,
index ce369f8ef7f0b7d690df25604464f2be410944a9..0b231c2f55624338510b3dffea4b53572bc2dd09 100644 (file)
@@ -2640,9 +2640,9 @@ gtk_status_icon_get_has_tooltip (GtkStatusIcon *status_icon)
 /**
  * gtk_status_icon_set_tooltip_text:
  * @status_icon: a #GtkStatusIcon
- * @tooltip_text: the contents of the tooltip for @status_icon
+ * @text: the contents of the tooltip for @status_icon
  *
- * Sets @tooltip_text as the contents of the tooltip.
+ * Sets @text as the contents of the tooltip.
  *
  * This function will take care of setting #GtkStatusIcon:has-tooltip to
  * %TRUE and of the default handler for the #GtkStatusIcon::query-tooltip
@@ -2655,7 +2655,7 @@ gtk_status_icon_get_has_tooltip (GtkStatusIcon *status_icon)
  */
 void
 gtk_status_icon_set_tooltip_text (GtkStatusIcon *status_icon,
-                                 const gchar   *tooltip_text)
+                                 const gchar   *text)
 {
   GtkStatusIconPrivate *priv;
 
@@ -2665,15 +2665,15 @@ gtk_status_icon_set_tooltip_text (GtkStatusIcon *status_icon,
 
 #ifdef GDK_WINDOWING_X11
 
-  gtk_widget_set_tooltip_text (priv->tray_icon, tooltip_text);
+  gtk_widget_set_tooltip_text (priv->tray_icon, text);
 
 #endif
 #ifdef GDK_WINDOWING_WIN32
-  if (tooltip_text == NULL)
+  if (text == NULL)
     priv->nid.uFlags &= ~NIF_TIP;
   else
     {
-      WCHAR *wcs = g_utf8_to_utf16 (tooltip_text, -1, NULL, NULL, NULL);
+      WCHAR *wcs = g_utf8_to_utf16 (text, -1, NULL, NULL, NULL);
 
       priv->nid.uFlags |= NIF_TIP;
       wcsncpy (priv->nid.szTip, wcs, G_N_ELEMENTS (priv->nid.szTip) - 1);
@@ -2685,7 +2685,7 @@ gtk_status_icon_set_tooltip_text (GtkStatusIcon *status_icon,
       g_warning ("%s:%d:Shell_NotifyIconW(NIM_MODIFY) failed", __FILE__, __LINE__-1);
 
   g_free (priv->tooltip_text);
-  priv->tooltip_text = g_strdup (tooltip_text);
+  priv->tooltip_text = g_strdup (text);
 #endif
 #ifdef GDK_WINDOWING_QUARTZ
   QUARTZ_POOL_ALLOC;
@@ -2693,7 +2693,7 @@ gtk_status_icon_set_tooltip_text (GtkStatusIcon *status_icon,
   QUARTZ_POOL_RELEASE;
 
   g_free (priv->tooltip_text);
-  priv->tooltip_text = g_strdup (tooltip_text);
+  priv->tooltip_text = g_strdup (text);
 #endif
 }
 
index 8a6beb1b89ddac7a22785596cac19aea6484ffa7..a7f42d35f935407d436fcf7c55e1841ca2e26486 100644 (file)
@@ -8147,12 +8147,11 @@ synth_crossing (GtkWidget      *widget,
   gdk_event_free (event);
 }
 
-/**
+/*
  * _gtk_widget_is_pointer_widget:
  * @widget: a #GtkWidget
  *
  * Returns %TRUE if the pointer window belongs to @widget.
- *
  */
 gboolean
 _gtk_widget_is_pointer_widget (GtkWidget *widget)
@@ -8174,7 +8173,7 @@ _gtk_widget_is_pointer_widget (GtkWidget *widget)
   return FALSE;
 }
 
-/**
+/*
  * _gtk_widget_synthesize_crossing:
  * @from: the #GtkWidget the virtual pointer is leaving.
  * @to: the #GtkWidget the virtual pointer is moving to.
@@ -8439,7 +8438,7 @@ gtk_widget_propagate_state (GtkWidget           *widget,
     }
 }
 
-/**
+/*
  * _gtk_widget_get_aux_info:
  * @widget: a #GtkWidget
  * @create: if %TRUE, create the structure if it doesn't exist
@@ -8448,7 +8447,7 @@ gtk_widget_propagate_state (GtkWidget           *widget,
  * 
  * Return value: the #GtkAuxInfo structure for the widget, or
  *    %NULL if @create is %FALSE and one doesn't already exist.
- **/
+ */
 GtkWidgetAuxInfo*
 _gtk_widget_get_aux_info (GtkWidget *widget,
                          gboolean   create)